home *** CD-ROM | disk | FTP | other *** search
/ NetGuide 2004 March / NETGUIDN0403.iso / pc / featured / Windows / orgcdfull.exe / setup_su.exe / {app} / Templates / Default Theme.dax < prev    next >
Encoding:
OrangeCD theme  |  2003-11-11  |  20.3 KB  |  673 lines

  1. /*
  2.     Default Theme.dax
  3.     Copyright (c) Firetongue Software, 1997-2003
  4. */
  5.  
  6. start["Start page"] {
  7.     show_tasks["Display common tasks"] : bool = true;
  8.     show_news["Display new albums"] : bool = true;
  9.     newssize["Number of new albums to display"] : int = 5;
  10.     newscoversize["New album cover size (pixels)"] : int = 64;
  11.     show_curdate["Display current date"] : bool = true;
  12.     show_tips["Display tip of the day"] : bool = true;
  13.     show_links["Display web links"] : bool = true;
  14.     show_stats["Display database statistics"] : bool = true;
  15.     show_google["Display Google search"] : bool = true;
  16. }
  17.  
  18. album["Album page"] {
  19.     albumcoversize["Album cover size (pixels)"] : int = 170;
  20.     show_shelfid["Display reference number"] : bool = true;
  21.     show_label["Display label and number"] : bool = true;
  22.     show_format["Display format"] : bool = true;
  23.     show_releasedate["Display release date"] : bool = true;
  24.     show_category["Display category"] : bool = true;
  25.     show_genre["Display genre"] : bool = true;
  26.     show_mono["Display mono/stereo/multichannel"] : bool = true;
  27.     show_live["Display live/studio"] : bool = true;
  28.     show_bitrate["Display bitrate"] : bool = true;
  29.  
  30.     show_custom1["Display custom field 1"] : bool = false;
  31.     show_custom2["Display custom field 2"] : bool = false;
  32.     show_custom3["Display custom field 3"] : bool = false;
  33.     show_custom4["Display custom field 4"] : bool = false;
  34.  
  35.     show_albumcredits["Display album credits"] : bool = true {
  36.         show_producer["Display producer"] : bool = true;
  37.         show_engineer["Display engineer"] : bool = true;
  38.         show_conductor["Display conductor"] : bool = true;
  39.         show_soloist["Display soloist"] : bool = true;
  40.         show_orchestra["Display orchestra"] : bool = true;
  41.     }
  42.  
  43.     show_albumnotes["Display album notes"] : bool = true {
  44.         show_cddbext["Display FreeDB notes"] : bool = true;
  45.         show_comment["Display personal notes"] : bool = true;
  46.     }
  47.  
  48.     show_albumlinks["Display album web links"] : bool = true;
  49.     show_medialink["Display MP3 file links"] : bool = true;
  50. }
  51.  
  52. track["Track page"] {
  53.     show_lyrics["Display lyrics"] : bool = true;
  54.  
  55.     show_trackcredits["Display track credits"] : bool = true {
  56.         show_trackcomposer["Display composer"] : bool = true;
  57.         show_trackauthor["Display lyrics author"] : bool = true;
  58.         show_trackperformer["Display performer"] : bool = true;
  59.         show_trackproducer["Display producer"] : bool = true;
  60.         show_trackengineer["Display engineer"] : bool = true;
  61.         show_trackconductor["Display conductor"] : bool = true;
  62.         show_tracksoloist["Display soloist"] : bool = true;
  63.         show_trackorchestra["Display orchestra"] : bool = true;
  64.     }
  65.  
  66.     show_tracknotes["Display track notes"] : bool = true {
  67.         show_trackcddbext["Display FreeDB notes"] : bool = true;
  68.         show_trackcomment["Display personal notes"] : bool = true;
  69.     }
  70. }
  71.  
  72. fonts["Fonts"] {
  73.     // make sure all fonts are in "pt/pt facename" format
  74.     textfont["Text font"] : font = "8pt/11pt Verdana";
  75.     titlefont["Title font"] : font = "11pt/14pt Arial";
  76. }
  77.  
  78. colors["Colors"] {
  79.     bgcolor["Background color"] : color = #FFFFFF;
  80.     textcolor["Text color"] : color = #000000;
  81.     linkcolor["Link color"] : color = #000000;
  82.     hotcolor["Hot link color"] : color = #3333FF;
  83.     paracolor["Paragraph color"] : color = #993333;
  84.     headcolor["Header color"] : color = #808080;
  85.     headtextcolor["Header text color"] : color = #FFFFFF;
  86.     newsbgcolor["New album background color"] : color = #EEEEEE;
  87.     shadecolor["Shade color"] : color = #E2E2E2;
  88.     framecolor["Frame background color"] : color = #CCCCCC;
  89. }
  90.  
  91. ::start/ui
  92.  
  93. <html>
  94. <head>
  95. <meta http-equiv="MSThemeCompatible" content="yes">
  96. <!--[charset/]-->
  97. <title>My music collection</title>
  98. <style><!--
  99.     body { font: $textfont; color: $textcolor; background-color: $bgcolor }
  100.     td { font: $textfont; color: $textcolor }
  101.     p { font: $textfont; color: $textcolor }
  102.     h2 { font: $titlefont }
  103.     a { color: $linkcolor; text-decoration: none }
  104.     a:hover { color: $hotcolor; text-decoration: underline }
  105.     img.cover { border-width: 1px; border-color: #CCCCCC }
  106. //--></style>
  107.  
  108. <script language=javascript><!--
  109. function initPage() {
  110. <!--[if($show_tips)]-->
  111.   document.all.tip.innerHTML = window.external.getTip(0);
  112. <!--[/if]-->
  113. }
  114. <!--[if($show_tips)]-->
  115. function nextTip() {
  116.   document.all.tip.innerHTML = window.external.getTip(1);
  117.   return false;
  118. }
  119. function prevTip() {
  120.   document.all.tip.innerHTML = window.external.getTip(2);
  121.   return false;
  122. }
  123. <!--[/if]-->
  124. //--></script>
  125.  
  126. </head>
  127. <body style="margin:0" onload="initPage();">
  128.  
  129. <table cellpadding=0 cellspacing=0 width="100%">
  130. <tr><td bgcolor=$headcolor>
  131. <h2 style="margin: 3pt; color: $headtextcolor">
  132. <b>My Music Collection</b>
  133. </h2></td><td bgcolor=$headcolor align=right>
  134.     <!--[if($show_curdate)]-->
  135.         <font color=$headtextcolor><!--[curdate/]--></font> 
  136.     <!--[/if]-->
  137. </td></tr></table>
  138.  
  139. <table width="100%" cellspacing=0 cellpadding=6>
  140. <tr><td valign=top>
  141.  
  142. <table width=100% cellpadding=0 cellspacing=0>
  143.     <tr>
  144.         <td></td>
  145.         <td></td>
  146.     </tr>
  147.  
  148.     <!--[if($show_tasks)]-->
  149.     <tr>
  150.     <td valign=top colspan=2>
  151.         <b><font color=$paracolor>Tasks</font></b>
  152.         <hr color=$framecolor size=1>
  153.     </td>
  154.     </tr>
  155.     <tr>
  156.     <td valign=top>
  157.         <b>Browse albums:</b><br>
  158.          <a href="javascript:window.external.browse(%22artistsort%22)">by artists</a><br>
  159.          <a href="javascript:window.external.browse(%22categ%22)">by categories</a><br>
  160.          <a href="javascript:window.external.browse(%22genre%22)">by genres</a><br>
  161.          <a href="javascript:window.external.browse(%22format%22)">by formats</a><br>
  162.          <a href="javascript:window.external.browse(%22label%22)">by labels</a><br>
  163.          <a href="javascript:window.external.browse(%22producer%22)">by producers</a><br>
  164.     </td>
  165.     <td valign=top>
  166.         <b>Add new albums:</b><br>
  167.          <a href="javascript:window.external.addnew(0)">by scanning CD-ROM</a><br>
  168.          <a href="javascript:window.external.addnew(1)">by scanning folders</a><br>
  169.          <a href="javascript:window.external.addnew(2)">by typing</a><br>
  170.          <a href="javascript:window.external.addnew(3)">search FreeDB.org</a>
  171.         <hr color=$framecolor size=1>
  172.         <b>Search:</b><br>
  173.         <a href="javascript:window.external.search(0)"> Full-text search</a><br>
  174.         <a href="javascript:window.external.search(1)"> Advanced search</a>
  175.         <p>
  176.     </td>
  177.     </tr>
  178.     <!--[/if]-->
  179.  
  180.     <!--[if($show_news)]-->
  181.     <tr>
  182.     <td colspan=2>
  183.         <b><font color=$paracolor>Recent additions</font></b>
  184.         <hr color=$framecolor size=1>
  185.         <table width=100% cellpadding=0 cellspacing=0>
  186.         <!--[album(top,$newssize,dateadded)]-->
  187.             <tr>
  188.                 <td valign=top bgcolor=$newsbgcolor>
  189.                     <!--[albumpagelink]--><!--[cover($newscoversize)/]--><!--[/albumpagelink]-->
  190.                 </td>
  191.                 <td width=6 bgcolor=$newsbgcolor>
  192.                      
  193.                 </td>
  194.                 <td width=100%  bgcolor=$newsbgcolor>
  195.                     <!--[artistlink]--><b><!--[artist/]--></b><!--[/artistlink]--><br>
  196.                     <!--[albumpagelink]--><!--[title/]--><!--[/albumpagelink]-->
  197.                 </td>
  198.             </tr>
  199.             <tr>
  200.                 <td colspan=3 height=6>
  201.                 </td>
  202.             </tr>
  203.         <!--[/album]-->
  204.         </table>
  205.     </td>
  206.     </tr>
  207.     <!--[/if]-->
  208.  
  209. </table>
  210.  
  211. </td><td width="140" valign=top>
  212.  
  213.     <!--[if($show_tips)]-->
  214.         <table width=100% cellpadding=0 cellspacing=0>
  215.         <tr><td colspan=3 bgcolor=$framecolor>
  216.             <table cellpadding=3 cellspacing=0 width=100%><tr><td>
  217.             <b>Tip of the day</b>
  218.             </td></tr></table>
  219.         </td></tr>
  220.         <tr><td bgcolor=$framecolor width=1>
  221.         </td><td>
  222.             <table cellpadding=3 cellspacing=0 width=100%><tr>
  223.             <td valign=top><div id=tip> </div>
  224.             </td></tr><tr><td><div align=right>
  225.             <input type=button value="Next Tip" style="font-size: 8pt" onclick="return nextTip();">
  226.             </div>
  227.         </td></tr></table>
  228.         </td><td bgcolor=$framecolor width=1>
  229.         </td></tr>
  230.         <tr><td colspan=3 height=1 bgcolor=$framecolor></td></tr>
  231.         <tr><td colspan=3 height=8></td></tr>
  232.         </table>
  233.     <!--[/if]-->
  234.  
  235.     <!--[if($show_links)]-->
  236.         <table width=100% cellpadding=0 cellspacing=0>
  237.         <tr><td colspan=3 bgcolor=$framecolor>
  238.             <table cellpadding=3 cellspacing=0><tr><td>
  239.             <b>Web links</b>
  240.             </td></tr></table>
  241.         </td></tr>
  242.         <tr><td bgcolor=$framecolor width=1>
  243.         </td><td>
  244.             <table cellpadding=3 cellspacing=0 width=100%><tr><td>
  245.             <a href="http://www.firetongue.com/" target=_blank>OrangeCD web site</a><br>
  246.             <a href="http://forum.firetongue.com/" target=_blank>OrangeCD forums</a><br>
  247.             <a href="http://www.freedb.org/" target=_blank>FreeDB web site</a><br>
  248.             </td></tr></table>
  249.         </td><td bgcolor=$framecolor width=1>
  250.         </td></tr>
  251.         <tr><td colspan=3 height=1 bgcolor=$framecolor></td></tr>
  252.         <tr><td colspan=3 height=8></td></tr>
  253.         </table>
  254.     <!--[/if]-->
  255.  
  256.     <!--[if($show_google)]-->
  257.         <table width=100% cellpadding=0 cellspacing=0>
  258.         <tr><td colspan=3 bgcolor=$framecolor>
  259.             <table cellpadding=3 cellspacing=0><tr><td>
  260.             <b>Web search</b>
  261.             </td></tr></table>
  262.         </td></tr>
  263.         <tr><td bgcolor=$framecolor width=1>
  264.         </td><td>
  265.             <table cellpadding=3 cellspacing=0 width=100%><tr><td>
  266.             <form action="http://www.google.com/search" method=get target=_blank>
  267.             <input type=text name=q style="width: 132px; font-size: 8pt"><br>
  268.             <div align=right><input type=submit value="Search" style="font-size: 8pt"></div>
  269.             </td></form></tr></table>
  270.         </td><td bgcolor=$framecolor width=1>
  271.         </td></tr>
  272.         <tr><td colspan=3 height=1 bgcolor=$framecolor></td></tr>
  273.         <tr><td colspan=3 height=8></td></tr>
  274.         </table>
  275.     <!--[/if]-->
  276.  
  277.     <!--[if($show_stats)]-->
  278.         <table width=100% cellpadding=0 cellspacing=0>
  279.         <tr><td colspan=3 bgcolor=$framecolor>
  280.             <table cellpadding=3 cellspacing=0><tr><td>
  281.             <b>Database stats</b>
  282.             </td></tr></table>
  283.         </td></tr>
  284.         <tr><td bgcolor=$framecolor width=1>
  285.         </td><td>
  286.             <table cellpadding=3 cellspacing=0 width=100%><tr><td>
  287.             <!--[datafilesize/]--><br>
  288.             <!--[totalvolumes/]--> disks<br>
  289.             <hr size=1 color=$framecolor>
  290.             Last backup: <!--[lastbackupdate/]--><br>
  291.             </td></tr></table>
  292.         </td><td bgcolor=$framecolor width=1>
  293.         </td></tr>
  294.         <tr><td colspan=3 height=1 bgcolor=$framecolor></td></tr>
  295.         <tr><td colspan=3 height=8></td></tr>
  296.         </table>
  297.     <!--[/if]-->
  298.  
  299. </td>
  300. </tr></table>
  301. </body>
  302. </html>
  303.  
  304. ::album/ui
  305.  
  306. <html>
  307. <head>
  308. <!--[charset/]-->
  309. <title><!--[artist]-->New Artist<!--[/artist]-->
  310. : <!--[title]-->New Title<!--[/title]--></title>
  311. <style><!--
  312. body { font: $textfont; color: $textcolor; background-color: $bgcolor }
  313. td { font: $textfont; color: $textcolor }
  314. p { font: $textfont; color: $textcolor }
  315. h2 { font: $titlefont }
  316. a { color: $linkcolor; text-decoration: none }
  317. a:hover { color: $hotcolor; text-decoration: underline }
  318. img.cover { border-width: 1px; border-color: #CCCCCC }
  319. //--></style>
  320. </head>
  321.  
  322. <body leftmargin=10 topmargin=10>
  323. <table width="100%" cellpadding=0 cellspacing=0><tbody><tr>
  324. <!--[if(cover)]-->
  325.     <td valign=top width=0><!--[coverlink]--><!--[cover($albumcoversize)/]--><!--[/coverlink]--></td>
  326.     <td>   </td>
  327. <!--[/if]-->
  328. <td valign=top width="100%">
  329. <h2 style="margin: 0 0 20 0"><b><!--[artistlink]--><!--[artist]-->New Artist<!--[/artist]--><!--[/artistlink]--></b>
  330. <br><!--[title]-->New Title<!--[/title]--></h2>
  331.  
  332. <!--[if($show_shelfid)]-->
  333.     <b>#</b> <!--[shelfid]-->not assigned<!--[/shelfid]--><br>
  334. <!--[/if]-->
  335.  
  336. <!--[if($show_label)]-->
  337.     <b>Label:</b> <!--[label/]--> <!--[number/]--><br>
  338. <!--[/if]-->
  339.  
  340. <!--[if($show_format)]-->
  341.     <b>Format:</b> <!--[format/]--><br>
  342. <!--[/if]-->
  343.  
  344. <!--[if($show_releasedate)]-->
  345.     <!--[if(releasedate)]-->
  346.         <b>Date:</b> <!--[releasedate/]--><br>
  347.     <!--[/if]-->
  348. <!--[/if]-->
  349.  
  350. <!--[if($show_category)]-->
  351.     <!--[if(category)]-->
  352.         <b>Category:</b> <!--[category/]--><br>
  353.     <!--[/if]-->
  354. <!--[/if]-->
  355.  
  356. <!--[if($show_genre)]-->
  357.     <!--[if(genre)]-->
  358.         <b>Genre:</b> <!--[genre/]--><br>
  359.     <!--[/if]-->
  360. <!--[/if]-->
  361.  
  362. <!--[if($show_live)]-->
  363.     <b>Live/studio:</b>
  364.     <!--[if(live)]-->
  365.         Live<br>
  366.     <!--[else]-->
  367.         Studio<br>
  368.     <!--[/if]-->
  369. <!--[/if]-->
  370.  
  371. <!--[if($show_mono)]-->
  372.     <b>Audio:</b>
  373.     <!--[if(mono)]-->
  374.         Mono<br>
  375.     <!--[else]-->
  376.         <!--[if(quadro)]-->
  377.             Multichannel<br>
  378.         <!--[else]-->
  379.             Stereo<br>
  380.         <!--[/if]-->
  381.     <!--[/if]-->
  382. <!--[/if]-->
  383.  
  384. <!--[if($show_bitrate)]-->
  385.     <!--[if(bitrate)]-->
  386.         <b>Bitrate:</b> <!--[bitrate/]--> Kbps<br>
  387.     <!--[/if]-->
  388. <!--[/if]-->
  389.  
  390. <!--[if($show_custom1)]-->
  391.     <!--[if(custom1)]-->
  392.         <b><!--[customname1/]-->:</b> <!--[custom1/]--><br>
  393.     <!--[/if]-->
  394. <!--[/if]-->
  395.  
  396. <!--[if($show_custom2)]-->
  397.     <!--[if(custom2)]-->
  398.         <b><!--[customname2/]-->:</b> <!--[custom2/]--><br>
  399.     <!--[/if]-->
  400. <!--[/if]-->
  401.  
  402. <!--[if($show_custom3)]-->
  403.     <!--[if(custom3)]-->
  404.         <b><!--[customname3/]-->:</b> <!--[custom3/]--><br>
  405.     <!--[/if]-->
  406. <!--[/if]-->
  407.  
  408. <!--[if($show_custom4)]-->
  409.     <!--[if(custom4)]-->
  410.         <b><!--[customname4/]-->:</b> <!--[custom4/]--><br>
  411.     <!--[/if]-->
  412. <!--[/if]-->
  413.  
  414. </td></tr></table>
  415. <p>
  416.  
  417. <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  418. <td align=left><b>TRACK LISTING</b></td>
  419. <td align=right valign=center><a href="javascript:window.external.editdisc(0,1);"><u>edit</u></a></td></tr></table>
  420.  
  421. <!--[volume]--><!--[if(volumename)]--><!--[volumename/]--> [<!--[volumetime/]-->]<!--[/if]-->
  422. <table width="100%" cellpadding=0 cellspacing=1 style="margin-bottom: 7pt">
  423. <!--[track]--><tr><td valign=top><!--[tracknum/]-->.  </td><td width="100%" valign=top><b><!--[tracklink]--><!--[tracktitle/]--><!--[/tracklink]--></b>  <!--[tracktime/]-->
  424.  
  425. <!--[if($show_medialink)]-->
  426.     <!--[if(medialink)]-->
  427.         <!--[medialink]--><u>play</u><!--[/medialink]-->
  428.     <!--[/if]-->
  429. <!--[/if]-->
  430.  
  431. </td></tr>
  432. <!--[if(trackArtist)]--><tr><td></td><td valign=top><i><!--[artistlink]--><!--[trackartist/]--><!--[/artistlink]--></i></td></tr>
  433. <!--[/if]--><!--[/track]--></table>
  434. <!--[/volume]-->
  435. Total time:  <!--[albumtime/]-->
  436. <p>
  437.  
  438. <!--[if($show_albumcredits)]-->
  439.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  440.     <td align=left><b>CREDITS</b></td>
  441.     <td align=right><a href="javascript:window.external.editdisc(0,3);"><u>edit</u></a></td></tr></table>
  442.  
  443.     <!--[if($show_producer)]-->
  444.         <!--[if(producer)]-->
  445.             <b>Producer:</b> <!--[producer/]--><br>
  446.         <!--[/if]-->
  447.     <!--[/if]-->
  448.     
  449.     <!--[if($show_engineer)]-->
  450.         <!--[if(engineer)]-->
  451.             <b>Engineer:</b> <!--[engineer/]--><br>
  452.         <!--[/if]-->
  453.     <!--[/if]-->
  454.     
  455.     <!--[if($show_conductor)]-->
  456.         <!--[if(conductor)]-->
  457.             <b>Conductor:</b> <!--[conductor/]--><br>
  458.         <!--[/if]-->
  459.     <!--[/if]-->
  460.     
  461.     <!--[if($show_soloist)]-->
  462.         <!--[if(soloist)]-->
  463.             <b>Soloist:</b> <!--[soloist/]--><br>
  464.         <!--[/if]-->
  465.     <!--[/if]-->
  466.     
  467.     <!--[if($show_orchestra)]-->
  468.         <!--[if(orchestra)]-->
  469.             <b>Orchestra:</b> <!--[orchestra/]--><br>
  470.         <!--[/if]-->
  471.     <!--[/if]-->
  472.     <p>
  473. <!--[/if]-->
  474.  
  475. <!--[if($show_albumnotes)]-->
  476.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  477.     <td align=left><b>NOTES</b></td>
  478.     <td align=right><a href="javascript:window.external.editdisc(0,4);"><u>edit</u></a></td></tr></table>
  479.  
  480.     <!--[if($show_cddbext)]-->
  481.         <!--[if(cddbext)]-->
  482.             <u>From FreeDB</u><br>
  483.             <!--[cddbext/]--><p>
  484.         <!--[/if]-->
  485.     <!--[/if]-->
  486.  
  487.     <!--[if($show_comment)]-->
  488.         <!--[if(comment)]--><u>Personal notes</u><br>
  489.             <!--[comment/]-->
  490.         <!--[/if]--><p>
  491.     <!--[/if]-->
  492. <!--[/if]-->
  493.  
  494. <!--[if($show_albumlinks)]-->
  495.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom: 5pt"><tr>
  496.     <td align=left><b>WEB LINKS</b></td>
  497.     <td align=right><a href="javascript:window.external.editartist(0,1);"><u>edit</u></a></td></tr></table>
  498.  
  499.     <!--[webshortcut]-->
  500.         <b><!--[webshortcutlink]--><!--[webshortcuttitle/]--><!--[/webshortcutlink]--></b>
  501.         <!--[if(webshortcutdesc)]-->- <!--[webshortcutdesc/]--><!--[/if]--><br>
  502.     <!--[/webshortcut]-->
  503.     <p>
  504. <!--[/if]-->
  505.  
  506. </html>
  507.  
  508. ::track/ui
  509.  
  510. <html>
  511. <head>
  512. <!--[charset/]-->
  513. <title>
  514. <!--[if(trackartist)]--><!--[trackartist/]-->
  515. <!--[else]--><!--[artist]-->New Artist<!--[/artist]--><!--[/if]-->
  516. : <!--[tracktitle]-->New Title<!--[/tracktitle]-->
  517. </title>
  518. <style><!--
  519.     body { font: $textfont; color: $textcolor; background-color: $bgcolor }
  520.     td { font: $textfont; color: $textcolor }
  521.     p { font: $textfont; color: $textcolor }
  522.     a { color: $linkcolor; text-decoration: none }
  523.     a:hover { color: $hotcolor; text-decoration: underline }
  524.     h2 { font: $titlefont }
  525.     h3 { font: $textfont }
  526. //--></style>
  527. </head>
  528. <body leftmargin=10 topmargin=10>
  529.  
  530. <h2><b><!--[artistlink]--><!--[if(trackartist)]--><!--[trackartist/]--><!--[else]--><!--[artist/]--><!--[/if]--><!--[/artistlink]--></b><br>
  531. <!--[tracktitle/]--></h2>
  532. <h3>(from <!--[albumpagelink]--><b><!--[title/]--></b><!--[/albumpagelink]-->)</h3>
  533.  
  534. <!--[if($show_lyrics)]-->
  535.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  536.     <td align=left><b>LYRICS</b></td>
  537.     <td align=right valign=top><a href="javascript:window.external.edittrk(0,0,3);"><u>edit</u></a></td></tr></table>
  538.  
  539.     <!--[lyrics/]-->
  540.     <p>
  541. <!--[/if]-->
  542.  
  543. <!--[if($show_trackcredits)]-->
  544.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  545.     <td align=left><b>CREDITS</b></td>
  546.     <td align=right valign=top><a href="javascript:window.external.edittrk(0,0,0);"><u>edit</u></a></td></tr></table>
  547.  
  548.     <!--[if($show_trackcomposer)]-->
  549.         <!--[if(trackcomposer)]-->
  550.             <b>Composer:</b> <!--[trackcomposer/]--><br>
  551.         <!--[/if]-->
  552.     <!--[/if]-->
  553.  
  554.     <!--[if($show_trackauthor)]-->
  555.         <!--[if(trackauthor)]-->
  556.             <b>Lyrics:</b> <!--[trackauthor/]--><br>
  557.         <!--[/if]-->
  558.     <!--[/if]-->
  559.  
  560.     <!--[if($show_trackperformer)]-->
  561.         <!--[if(trackperformer)]-->
  562.             <b>Performer:</b> <!--[trackperformer/]--><br>
  563.         <!--[/if]-->
  564.     <!--[/if]-->
  565.  
  566.     <!--[if($show_trackproducer)]-->
  567.         <!--[if(trackproducer)]-->
  568.             <b>Producer:</b> <!--[trackproducer/]--><br>
  569.         <!--[/if]-->
  570.     <!--[/if]-->
  571.  
  572.     <!--[if($show_trackengineer)]-->
  573.         <!--[if(trackengineer)]-->
  574.             <b>Engineer:</b> <!--[trackengineer/]--><br>
  575.         <!--[/if]-->
  576.     <!--[/if]-->
  577.  
  578.     <!--[if($show_trackconductor)]-->
  579.         <!--[if(trackconductor)]-->
  580.             <b>Conductor:</b> <!--[trackconductor/]--><br>
  581.         <!--[/if]-->
  582.     <!--[/if]-->
  583.  
  584.     <!--[if($show_tracksoloist)]-->
  585.         <!--[if(tracksoloist)]-->
  586.             <b>Soloist:</b> <!--[tracksoloist/]--><br>
  587.         <!--[/if]-->
  588.     <!--[/if]-->
  589.  
  590.     <!--[if($show_trackorchestra)]-->
  591.         <!--[if(trackorchestra)]-->
  592.             <b>Orchestra:</b> <!--[trackorchestra/]--><br>
  593.         <!--[/if]-->
  594.     <!--[/if]-->
  595.     <p>
  596. <!--[/if]-->
  597.  
  598. <!--[if($show_tracknotes)]-->
  599.     <table width="100%" bgcolor=$shadecolor cellpadding=0 style="margin-bottom:5pt"><tr>
  600.     <td align=left><b>NOTES</b></td>
  601.     <td align=right><a href="javascript:window.external.edittrk(0,0,2);"><u>edit</u></a></td></tr></table>
  602.  
  603.     <!--[if($show_trackcddbext)]-->
  604.         <!--[if(trackcddbext)]-->
  605.             <u>From FreeDB</u><br>
  606.             <!--[trackcddbext/]--><p>
  607.         <!--[/if]-->
  608.     <!--[/if]-->
  609.  
  610.     <!--[if($show_trackcomment)]-->
  611.         <!--[if(trackcomment)]--><u>Personal notes</u><br>
  612.             <!--[trackcomment/]-->
  613.         <!--[/if]--><p>
  614.     <!--[/if]-->
  615.  
  616. <!--[/if]-->
  617.  
  618. </html>
  619.  
  620. ::query/ui
  621.  
  622. <html>
  623. <head>
  624. <!--[charset/]-->
  625. <title><!--[querytitle/]--></title>
  626. <style><!--
  627.     a {    color: $headtextcolor; text-decoration: none }
  628.     a:hover { color: $headtextcolor; text-decoration: underline }
  629.     h2 { font: $titlefont }
  630. //--></style>
  631. </head>
  632. <body scroll=no style="margin:0">
  633. <table cellpadding=0 cellspacing=0 width="100%" height="100%">
  634. <tr><td bgcolor=$headcolor>
  635. <h2 style="margin: 3pt; color: $headtextcolor">
  636. <!--[querypart]--><!--[querypartlink]--><!--[queryparttitle/]--><!--[/querypartlink]--> >
  637. <!--[/querypart]--><b><!--[querytitle/]--></b>
  638. </h2>
  639. </td></tr>
  640. <tr><td height="100%">
  641. <object width="100%" height="100%" classid="clsid:ab005629-0afa-11d5-bce6-082201440300" style="border:0"></object>
  642. </td></tr>
  643. </table>
  644. </body>
  645. </html>
  646.  
  647. ::report/ui
  648.  
  649. <html>
  650. <head>
  651. <!--[CharSet/]-->
  652. <title>Statistics</title>
  653. <style><!--
  654.     body { font: $textfont; color: $textcolor; background-color: $bgcolor; margin: 0 0 0 0 }
  655.     td { font: $textfont; bgcolor: $bgcolor; color: $textcolor }
  656.     a { color: $linkcolor; text-decoration: none }
  657.     a:hover { color: $hotcolor; text-decoration: underline }
  658.     h2 { font: $titlefont }
  659.     img.piechart { }
  660. //--></style>
  661. </head>
  662. <body><table cellpadding=0 cellspacing=0 width="100%" height="100%" border=0>
  663. <tr><td bgcolor=$headcolor>
  664. <h2 style="margin: 3pt; color: $headtextcolor"><b><!--[reportfield/]--></b></h2>
  665. </td></tr>
  666. <tr><td height=100% align=left valign=top>
  667.     <table>
  668.         <tr><td valign=top><!--[reportchart/]--></td>
  669.         <td><!--[reportlegend/]--></td></tr>
  670.     </table>
  671. </td></tr>
  672. </table></body>
  673.